home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / stty.c,v < prev    next >
Text File  |  1988-12-31  |  3KB  |  143 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     88.12.31.12.26.15;  author ouster;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.07.29.17.40.56;  author ouster;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.06.19.14.32.06;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.3
  30. log
  31. @Simplify so as not to need compatibility routines or Sprite kernel calls.
  32. @
  33. text
  34. @/* 
  35.  * stty.c --
  36.  *
  37.  *    Soruce for stty procedure.
  38.  *
  39.  * Copyright 1986 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/stty.c,v 1.2 88/07/29 17:40:56 ouster Exp Locker: ouster $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include <sgtty.h>
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * stty --
  59.  *
  60.  *      Set terminal characteristics.
  61.  *
  62.  * Results:
  63.  *      0 is normally returned.  If an error occurred, -1 is returned
  64.  *    and errno give details.
  65.  *
  66.  * Side effects:
  67.  *    The terminal characterstics are modified according to buf.
  68.  *
  69.  *----------------------------------------------------------------------
  70.  */
  71.  
  72.  
  73. int
  74. stty(fd, buf)
  75.     int fd;            /* File descriptor */
  76.     struct sgttyb *buf;        /* buffer that holds tty info */
  77. {
  78.     return ioctl(fd, TIOCSETP, buf);
  79. }
  80. @
  81.  
  82.  
  83. 1.2
  84. log
  85. @Lint.
  86. @
  87. text
  88. @d2 1
  89. a2 1
  90.  * gtty.c --
  91. d4 1
  92. a4 1
  93.  *    Procedure to map from Unix gtty system call to Sprite.
  94. d7 7
  95. a13 1
  96.  * All rights reserved.
  97. d17 1
  98. a17 1
  99. static char rcsid[] = "$Header: stty.c,v 1.1 88/06/19 14:32:06 ouster Exp $ SPRITE (Berkeley)";
  100. d20 1
  101. a20 4
  102. #include <sprite.h>
  103. #include "compatInt.h"
  104. #include <dev/tty.h>
  105.  
  106. d27 1
  107. a27 1
  108.  *      Procedure to simulate Unix stty call.
  109. d30 2
  110. a31 2
  111.  *      UNIX_ERROR is returned upon error, with the actual error code
  112.  *    stored in errno.  UNIX_SUCCESS is returned on success.
  113. d34 1
  114. a34 1
  115.  *    None.
  116. d45 1
  117. a45 10
  118.     ReturnStatus    status;
  119.  
  120.     status = Fs_IOControl(fd, IOC_TTY_SETP, sizeof(struct sgttyb),
  121.         (Address) buf, 0, (Address) NULL);
  122.     if (status != SUCCESS) {
  123.         errno = Compat_MapCode(status);
  124.         return(UNIX_ERROR);
  125.     }
  126.  
  127.     return(UNIX_SUCCESS);
  128. @
  129.  
  130.  
  131. 1.1
  132. log
  133. @Initial revision
  134. @
  135. text
  136. @d11 1
  137. a11 1
  138. static char rcsid[] = "$Header: stty.c,v 1.2 87/06/25 10:38:59 ouster Exp $ SPRITE (Berkeley)";
  139. d45 1
  140. a45 1
  141.         (Address) buf, 0, NULL);
  142. @
  143.